home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / exectl.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  561b  |  19 lines

  1. /*****************************************************************************
  2.  
  3.     ExeCtL()
  4.  
  5.     This function executes a ^L (control-L or caret-L) command.
  6.  
  7. *****************************************************************************/
  8.  
  9. #include "zport.h"        /* define portability identifiers */
  10. #include "tecoc.h"        /* define general identifiers */
  11. #include "defext.h"        /* define external global variables */
  12. #include "dchars.h"        /* define identifiers for characters */
  13.  
  14. DEFAULT ExeCtL()        /* execute an ^L (control-L) command */
  15. {
  16.     ZDspCh(FORMFD);
  17.     return SUCCESS;
  18. }
  19.